home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games: Greatest Hits 1996
/
Amiga Games: Greatest Hits 1996.iso
/
rexx
/
convertfile.rx
< prev
next >
Wrap
Text File
|
1996-06-18
|
760b
|
40 lines
/*
$VER: ConvertFile.rx V5.41 (15.2.96)
© 1993-96 by Andreas R. Kleinert
This script demonstrates loading, saving (converting) and
displaying files by using SuperView's ARexxPort.
*/
address command
SuperView "-INSTALL_APPMENU=FALSE -INSTALL_APPICON=FALSE"
say ""
say "ARexx : SuperView has been started : Waiting a moment..."
wait 3
say "ARexx : Loading a GIF Graphics via the LOAD command"
address 'SuperView.rx' "LOAD=/Bonus/PS"
say "ARexx : Saving Graphics as Windows BMP"
address 'SuperView.rx' "SAVE_TYPE=BMP (Win,OS/2)"
address 'SuperView.rx' "SAVE=PS.bmp"
wait 3
say "ARexx : Load this BMP Gfx now for control"
address 'SuperView.rx' "SHOW=PS.bmp"
say "ARexx : O.K. : Let's quit !"
Wait 2
address 'SuperView.rx' "QUIT"
exit